From b84621f9b2b7161a5ad4f0b194264e9df3e65dbf Mon Sep 17 00:00:00 2001 From: dujinkim Date: Tue, 8 Jul 2025 11:23:40 +0000 Subject: (대표님) 20250708 미반영분 커밋 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/[lng]/page.tsx | 181 +++++++++++++++++++++++++++++++---------------------- 1 file changed, 107 insertions(+), 74 deletions(-) (limited to 'app/[lng]/page.tsx') diff --git a/app/[lng]/page.tsx b/app/[lng]/page.tsx index 2ee83857..d0018f40 100644 --- a/app/[lng]/page.tsx +++ b/app/[lng]/page.tsx @@ -3,112 +3,119 @@ import Link from 'next/link'; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'; import { Button } from '@/components/ui/button'; import { Badge } from '@/components/ui/badge'; -import { ShoppingCart, Users, Settings, ArrowRight, Building2 } from 'lucide-react'; +import { Briefcase, Package, Settings, ArrowRight, CheckCircle, Monitor, Shield, BarChart3, Building2 } from 'lucide-react'; export default function LandingPage() { const portals = [ { id: 'sales', - title: '기술영업포탈', + title: '기술 영업 포털', description: '기술 영업 단계에서의 RFQ를 관리할 수 있는 통합 플랫폼', - icon: Users, - color: 'from-emerald-500 to-teal-500', + icon: Briefcase, + color: 'from-green-500 to-emerald-500', href: '/sales', - features: ['벤더 관리', '기술 영업 RFQ'] + features: ['벤더 관리', '기술 영업 RFQ'], }, { id: 'purchase', - title: '구매포탈', - description: '협력업체에서부터 마지막 발주까지 원스톱 구매 솔루션', - icon: ShoppingCart, - color: 'from-blue-500 to-cyan-500', + title: '구매 포털', + description: '협력 업체에서 부터 마지막 발주까지 원스톱 구매 솔루션', + icon: Package, + color: 'from-blue-500 to-indigo-500', href: '/procurement', - features: ['협력업체 관리', '구매관리'] + features: ['협력 업체 관리', '구매 관리'], }, - { id: 'design', - title: '설계포탈', + title: '설계 포털', description: '벤더가 플랫폼을 통해 데이터와 문서를 제출할 수 있게 하고 TBE를 처리할 수 있는 플랫폼', icon: Settings, - color: 'from-purple-500 to-pink-500', + color: 'from-purple-500 to-violet-500', href: '/engineering', - features: ['설계 기준정보관리', 'TBE'] + features: ['설계 기준정보 관리', 'TBE'], } ]; - - return ( -
+
{/* Header */}
-
-
-
- -

- enterprise Vendor Co-work Platform +
+
+
+
+

+ Enterprise Vendor Co-work Platform

-

+

통합된 비즈니스 솔루션으로 구매부터 설계까지, -
모든 업무 프로세스를 하나의 플랫폼에서 관리하세요 +
+ 모든 업무 프로세스를 하나의 플랫폼에서 관리하세요

- - Enterprise Ready -

{/* Main Portal Selection */} -
-
-

+
+
+
+
+

포털을 선택하세요

-

+

각 포털은 특화된 기능과 도구를 제공하여 업무 효율성을 극대화합니다

+
-
+
{portals.map((portal) => { const Icon = portal.icon; return ( - -
+ +
- -
- + +
+
+ +
- + {portal.title} - + {portal.description}
- +
-

주요 기능

+

주요 기능

{portal.features.map((feature, idx) => ( -
-
- {feature} +
+
+ {feature}
))}
- +
+ +
@@ -117,42 +124,68 @@ export default function LandingPage() {
{/* Additional Info Section */} -
-
-

- 모든 포털이 연동됩니다 -

-

- 구매, 영업, 설계 포털 간의 데이터가 실시간으로 동기화되어 - 효율적인 업무 협업이 가능합니다 -

-
- 실시간 동기화 - 통합 대시보드 - 권한 관리 - 보안 인증 +
+ {/* Left Section - Text Content */} +
+
+

+ 모든 포털이 연동됩니다 +

+

+ 구매, 영업, 설계 포털 간의 데이터가 +
+ 실시간으로 동기화되어 효율적인 업무 협업이 가능합니다 +

+ + {/* Right Section - Feature Icons */} +
+
+
+ + 실시간 동기화 +
+
+ + 통합 대시보드 +
+
+ + 권한 관리 +
+
+ + 보안 인증 +
+
+
+
- + {/* Footer */} -

+ ); } \ No newline at end of file -- cgit v1.2.3